home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-Blue - MS DOS Public Domain Library
/
PC-Blue MS-DOS Public Domain Library - NYACC.iso
/
vol260
/
boosters.arc
/
XCALENDA.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1985-10-01
|
410 b
|
27 lines
{$IBoDecl}
{$IStrip}
{$IPutStr}
{$ICopies}
{$IBoxul}
{$IDows}
{$ICenter}
{$ICalendar}
var mm, ccyy : integer;
BEGIN
ClrScr;
repeat
PutStr( h,'Enter Month and Year: ', 1,1,112);
ClrEol;
Read( MM, CCYY);
if mm > 0 then
begin
if CCYY < 100 then CCYY := CCYY + 1900;
Calendar ( MM, CCYY, 20, 8);
end;
until mm = 0;
END.